home *** CD-ROM | disk | FTP | other *** search
/ Visual Cafe 3 / Visual Cafe 3.ISO / Vcafe / Main.bin / SingleOption.java < prev    next >
Text File  |  1998-09-08  |  482b  |  31 lines

  1. package com.symantec.itools.frameworks.application.commandline;
  2.  
  3.  
  4. /**
  5.  * @author Symantec Internet Tools Division
  6.  * @version 1.0
  7.  * @since VCafe 3.0
  8.  */
  9.  
  10. public abstract class SingleOption 
  11.     extends Option
  12. {
  13.     protected SingleOption()
  14.     {
  15.     }
  16.     
  17.     protected SingleOption(String[] flags)
  18.     {
  19.         super(flags);
  20.     }
  21.  
  22.     /**
  23.      * @since VCafe 3.0
  24.      */
  25.     
  26.     protected int getConsumedCount()
  27.     {
  28.         return (1);
  29.     }
  30. }
  31.